home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / m2 / cat3src / cat / arcstart.d < prev    next >
Text File  |  1997-10-26  |  629b  |  22 lines

  1. DEFINITION MODULE ARCStarter;
  2.  
  3. PROCEDURE ExecProgram (VAR name, cmd: ARRAY OF CHAR; toLog: BOOLEAN; 
  4.                        noRedirect: BOOLEAN; redraw: BOOLEAN;
  5.                        VAR res: INTEGER);
  6. (* Ruft ein Programm mit IO-Umlenkung auf 
  7.  * Wenn toLog TRUE ist, dann werden die Ausgaben auch in der Datei
  8.  * CATLOG.TXT protokolliert (sofern diese offen ist)
  9.  * Wenn noRedirect angegeben ist, dann wird die Ausgabe des Programmes 
  10.  * nie umgelenkt.
  11.  *)
  12.  
  13. PROCEDURE DeArc(toLog: BOOLEAN):INTEGER;
  14. (* Packt das Outfile aus 
  15.  *)
  16.  
  17. PROCEDURE Archive():INTEGER;
  18. (* Packt das Infile ein
  19.  *)
  20.  
  21. END ARCStarter.
  22.